home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
PRINTER
/
MEXLAS.ARJ
/
TXLABELS.PRG
< prev
next >
Wrap
Text File
|
1991-09-01
|
1KB
|
50 lines
*:*********************************************************************
*:
*: Program: TXLABELS.PRG
*:
*: System: Texas Associated Software Laser Library
*: Author: Jose E. Lopez, Jr.
*: Copyright (c) 1991, Texas Associated Software - Red Oak, TX
*:
*:*********************************************************************
txinit(_print_port)
txreset()
txpagesize("letter")
txorient("P")
txsetlpi(6)
_company = "Texas Associated Software"
_address1 = "523 La Cresta Drive"
_address2 = "Red Oak, TX 75154"
_phone = "(214) 617-5260"
_customer = "Customer Name"
_caddress1 = "Customer Address"
_caddress2 = "Customer City/State"
for i = 1 to 60 step 10
txcolbox( i, 01, 39, 10, 1)
txcolbox( i, 41, 39, 10, 1)
Next
for i = 1 to 60 step 10
txcolprint( i , 01, .t., _company)
txcolprint( i , 41, .t., _company)
txcolprint( i + 1, 01, .f., _address1)
txcolprint( i + 1, 41, .f., _address1)
txcolprint( i + 2, 01, .f., _address2)
txcolprint( i + 2, 41, .f., _address2)
txcolprint( i + 6, 15, .t., _customer)
txcolprint( i + 6, 55, .t., _customer)
txcolprint( i + 7, 15, .f., _caddress1)
txcolprint( i + 7, 55, .f., _caddress1)
txcolprint( i + 8, 15, .f., _caddress2)
txcolprint( i + 8, 55, .f., _caddress2)
Next
txclear()
*: EOF: TXLABELS.PRG